home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr11 / cuj9303.zip / 1103018B < prev    next >
Text File  |  1993-06-21  |  207b  |  10 lines

  1. /* strftime function */
  2. #include "xtime.h"
  3.  
  4. size_t (strftime)(char *s, size_t n,
  5.     const char *fmt, const struct tm *t)
  6.     {    /* format time to string */
  7.     return (_Strftime(s, n, fmt, t, &_Times));
  8.     }
  9.  
  10.